@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");
* {
  font-family: "Lato";
}

#app {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 44, 51, 0.329);
}

.wrapper {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55vw;
  height: 70vh;
  border-radius: 2vh;
  background: #232c33e1;
  padding: 1rem;
}

.wrapper .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  border-radius: 1vh;
  height: auto;
  padding: 1rem;
}

.wrapper .categories .current {
  border: 1px solid #002855;
}

.wrapper .categories ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  list-style: none;
}

.wrapper .categories ul .tab {
  width: 190px;
  padding: 0.5rem;
  background: #505968;
  text-align: center;
  border-radius: 1vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper .categories ul .tab:hover {
  border: 1px solid white;
  background: #505968;
}

.wrapper .buy-modal {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(35, 44, 51, 0.87);
  width: 350px;
  height: auto;
  z-index: 3;
  border-radius: 1vh;
  color: white;
}

.wrapper .buy-modal .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.wrapper .buy-modal .content .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.wrapper .buy-modal .content #li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.wrapper .buy-modal .content .info {
  padding: 1rem;
}

.wrapper .buy-modal .content .info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}

.wrapper .buy-modal .content .info .item .image {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-top: auto;
}

.wrapper .buy-modal .content .info .item .image img {
  width: 100%;
}

.wrapper .buy-modal .content .info .item div {
  display: inline;
}

.wrapper .buy-modal .content .info .item div p {
  text-transform: capitalize;
}

.wrapper .buy-modal .content p {
  font-size: 18px;
}

.wrapper .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 1rem;
}

.wrapper .products .product {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: white;
  margin: 5px;
  width: 150px;
  height: 150px;
  background: #505968;
  border-radius: 1vh;
  border: 2px solid #505968;
  -webkit-box-shadow: rgba(35, 44, 51, 0.24) 0px 3px 8px;
          box-shadow: rgba(35, 44, 51, 0.24) 0px 3px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  overflow: hidden !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper .products .product .image {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.wrapper .products .product .image img {
  width: 65%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  height: auto;
}

.wrapper .products .product .info {
  position: relative;
  top: 10%;
  text-align: center;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.wrapper .products .product .info p:nth-child(1) {
  text-transform: capitalize;
}

.wrapper .products .product:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border: 1px solid white;
}

.wrapper .products .product:hover .info {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.wrapper .products .product:hover img {
  margin-top: 30%;
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  -webkit-filter: drop-shadow(0 0 0.75rem rgba(202, 202, 202, 0.349));
          filter: drop-shadow(0 0 0.75rem rgba(202, 202, 202, 0.349));
}

.wrapper .products .product .buy {
  width: 100%;
}

.wrapper .products .product .buy button {
  color: white;
  background: lime;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 1vh;
  padding: 0.5rem;
  width: 100%;
  border: none;
}

.blur {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.logga {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 97.5%;
  top: 6.5%;
  transform: translate(-50%, -110%)
}

.price {
  color: lime;
}
/*# sourceMappingURL=app.css.map */